if exists (select [Nombre] from [dbo].[Configuracion] where [Nombre] = 'VentasEfectivoMOL')
    begin 
	raiserror('Error -998: El registro ya existe.', 1, 10)
	
end
else
	begin
	INSERT INTO [dbo].[Configuracion]
           ([Pk_IdConfiguracion]
		   ,[Nombre]
           ,[Descripcion]
		   ,[Valor]
	       ,[TipoDato])
     VALUES
           (23
           ,'VentasEfectivoMOL'
		   ,'Subir Ventas EfectivoMOL'
	       ,'1'
	       ,'bool')
end